home *** CD-ROM | disk | FTP | other *** search
/ Best of Shareware / Best of PC Windows Shareware 1.0 - Wayzata Technology (7111) (1993).iso / mac / ZIPPED / DOS / GRAPHICS / POVSRC.ZIP / MACHINE.ZIP / AMIGA.ZIP / AMIGA.MAK < prev    next >
Makefile  |  1992-07-05  |  2KB  |  52 lines

  1. # Makefile for Persistence of Vision Raytracer 
  2. # This file is released to the public domain.
  3. #
  4. #
  5. # MAKE Macros and Such...
  6. #
  7.  
  8. #***************************************************************
  9. #*
  10. #*                      Amiga Options
  11. #*
  12. #***************************************************************
  13.  
  14. # Uncomment for Amiga Lattice C for IEEE w/o coprocessor
  15. #CFLAGS    = -cusrft -fi -m0 -b0 -O -v
  16.  
  17. # Uncomment for Amiga Lattice C with 68881
  18. CFLAGS    = -cusrft -f8 -m2 -b0 -O -v -dM68881
  19.  
  20. # Flags for debugging
  21. #CFLAGS    = -cusrft -q5w5e -d5
  22.  
  23. LIBSIEEE    = lib:lcmieee.lib lib:lcnb.lib lib:amiga.lib
  24. LIBS881    = lib:lcm881.lib lib:lcnb.lib lib:amiga.lib
  25.  
  26. OBJ    = o
  27. MACHINE_OBJ    = amiga.$(OBJ)
  28.  
  29. POVOBJS = povray.$(OBJ) render.$(OBJ) tokenize.$(OBJ) parse.$(OBJ) \
  30.       objects.$(OBJ) spheres.$(OBJ) quadrics.$(OBJ) lighting.$(OBJ) \
  31.       prioq.$(OBJ) texture.$(OBJ) matrices.$(OBJ) csg.$(OBJ)  hfield.$(OBJ)\
  32.       txtcolor.$(OBJ) txtbump.$(OBJ) txtmap.$(OBJ) txttest.$(OBJ) \
  33.       colour.$(OBJ) viewpnt.$(OBJ) ray.$(OBJ) planes.$(OBJ) iff.$(OBJ) \
  34.       gif.$(OBJ) gifdecod.$(OBJ) triangle.$(OBJ) raw.$(OBJ) dump.$(OBJ) \
  35.       targa.$(OBJ) poly.$(OBJ) bezier.$(OBJ) vect.$(OBJ) \
  36.           blob.$(OBJ) boxes.$(OBJ) point.$(OBJ) $(MACHINE_OBJ)
  37.  
  38.  
  39. #  Amiga Linkage...
  40. #
  41.  povray881: $(POVOBJS)
  42.     blink <with <
  43.     from lib:c.o $(POVOBJS) LIB $(LIBS881) to povray881
  44.     <
  45.                                                           
  46.  
  47.  
  48.  povrayieee: $(POVOBJS)
  49.     blink <with <
  50.     from lib:c.o $(POVOBJS) LIB $(LIBSIEEE) to povrayieee
  51.     <
  52.